home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / make368b.zoo / make / NEWS < prev    next >
Encoding:
Text File  |  1993-09-18  |  16.1 KB  |  452 lines

  1. GNU make NEWS -- history of user-visible changes.  14 July 1993
  2.  
  3. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  4. See the end for copying conditions.
  5.  
  6. Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
  7.  
  8. Version 3.68
  9.  
  10. * You can list several archive member names inside parenthesis:
  11.   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
  12.  
  13. * You can use wildcards inside archive member references.  For example,
  14.   `lib(*.o)' expands to all existing members of `lib' whose names end in
  15.   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
  16.   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
  17.   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
  18.  
  19. * A suffix rule `.X.a' now produces two pattern rules:
  20.     (%.o): %.X    # Previous versions produced only this.
  21.     %.a: %.X    # Now produces this as well, just like other suffixes.
  22.  
  23. * The new flag `--warn-undefined-variables' says to issue a warning message
  24.   whenever Make expands a reference to an undefined variable.
  25.  
  26. * The new `-include' directive is just like `include' except that there is
  27.   no error (not even a warning) for a nonexistent makefile.
  28.  
  29. * Commands in an invocation of the `shell' function are now run with a
  30.   modified environment like target commands are, so you can use `export' et
  31.   al to set up variables for them.  They used to run with the environment
  32.   that `make' started with.
  33.  
  34. Version 3.66
  35.  
  36. * The `make --version' (or `make -v') now exits immediately after printing
  37.   the version number.
  38.  
  39. Version 3.65
  40.  
  41. * Make now supports long-named members in `ar' archive files.
  42.  
  43. Version 3.64
  44.  
  45. * Make now supports the `+=' syntax for a variable definition which appends
  46.   to the variable's previous value.  See the section `Appending More Text
  47.   to Variables' in the manual for full details.
  48.  
  49. * The new option `--no-print-directory' inhibits the `-w' or
  50.   `--print-directory' feature.  Make turns on `--print-directory'
  51.   automatically if you use `-C' or `--directory', and in sub-makes; some
  52.   users have found this behavior undesirable.
  53.  
  54. * The built-in implicit rules now support the alternative extension
  55.   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
  56.  
  57. Version 3.63
  58.  
  59. * Make now uses a standard GNU `configure' script.  See the new file
  60.   INSTALL for the new (and much simpler) installation procedure.
  61.  
  62. * There is now a shell script to build Make the first time, if you have no
  63.   other `make' program.  `build.sh' is created by `configure'; see README.
  64.  
  65. * GNU Make now completely conforms to the POSIX.2 specification for `make'.
  66.  
  67. * Elements of the `$^' and `$?' automatic variables that are archive
  68.   member references now list only the member name, as in Unix and POSIX.2.
  69.  
  70. * You should no longer ever need to specify the `-w' switch, which prints
  71.   the current directory before and after Make runs.  The `-C' switch to
  72.   change directory, and recursive use of Make, now set `-w' automatically.
  73.  
  74. * Multiple double-colon rules for the same target will no longer have their
  75.   commands run simultaneously under -j, as this could result in the two
  76.   commands trying to change the file at the same time and interfering with
  77.   one another.
  78.  
  79. * The `SHELL' variable is now never taken from the environment.
  80.   Each makefile that wants a shell other than the default (/bin/sh) must
  81.   set SHELL itself.  SHELL is always exported to child processes.
  82.   This change was made for compatibility with POSIX.2.
  83.  
  84. * Make now accepts long options.  There is now an informative usage message
  85.   that tells you what all the options are and what they do.  Try `make --help'.
  86.  
  87. * There are two new directives: `export' and `unexport'.  All variables are
  88.   no longer automatically put into the environments of the commands that
  89.   Make runs.  Instead, only variables specified on the command line or in
  90.   the environment are exported by default.  To export others, use:
  91.     export VARIABLE
  92.   or you can define variables with:
  93.     export VARIABLE = VALUE
  94.   or:
  95.     export VARIABLE := VALUE
  96.   You can use just:
  97.     export
  98.   or:
  99.     .EXPORT_ALL_VARIABLES:
  100.   to get the old behavior.  See the node `Variables/Recursion' in the manual
  101.   for a full description.
  102.  
  103. * The commands from the `.DEFAULT' special target are only applied to
  104.   targets which have no rules at all, not all targets with no commands.
  105.   This change was made for compatibility with Unix make.
  106.  
  107. * All fatal error messages now contain `***', so they are easy to find in
  108.   compilation logs.
  109.  
  110. * Dependency file names like `-lNAME' are now replaced with the actual file
  111.   name found, as with files found by normal directory search (VPATH).
  112.   The library file `libNAME.a' may now be found in the current directory,
  113.   which is checked before VPATH; the standard set of directories (/lib,
  114.   /usr/lib, /usr/local/lib) is now checked last.
  115.   See the node `Libraries/Search' in the manual for full details.
  116.  
  117. * A single `include' directive can now specify more than one makefile to
  118.   include, like this:
  119.     include file1 file2
  120.   You can also use shell file name patterns in an `include' directive:
  121.     include *.mk 
  122.  
  123. * The default directories to search for included makefiles, and for
  124.   libraries specified with `-lNAME', are now set by configuration.
  125.  
  126. * You can now use blanks as well as colons to separate the directories in a
  127.   search path for the `vpath' directive or the `VPATH' variable.
  128.  
  129. * You can now use variables and functions in the left hand side of a
  130.   variable assignment, as in "$(foo)bar = value".
  131.  
  132. * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
  133.   The `MAKE_COMMAND' variable is now defined to the name with which make
  134.   was invoked.
  135.  
  136. * The built-in rules for C++ compilation now use the variables `$(CXX)' and
  137.   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
  138.   problems with shells that cannot have `+' in environment variable names.
  139.  
  140. * The value of a recursively expanded variable is now expanded when putting
  141.   it into the environment for child processes.  This change was made for
  142.   compatibility with Unix make.
  143.  
  144. * A rule with no targets before the `:' is now accepted and ignored.
  145.   This change was made for compatibility with SunOS 4 make.
  146.   We do not recommend that you write your makefiles to take advantage of this.
  147.  
  148. * The `-I' switch can now be used in MAKEFLAGS, and are put there
  149.   automatically just like other switches.
  150.  
  151. Version 3.61
  152.  
  153. * Built-in rules for C++ source files with the `.C' suffix.
  154.   We still recommend that you use `.cc' instead.
  155.  
  156. * If commands are given too many times for a single target,
  157.   the last set given is used, and a warning message is printed.
  158.  
  159. * Error messages about makefiles are in standard GNU error format,
  160.   so C-x ` in Emacs works on them.
  161.  
  162. * Dependencies of pattern rules which contain no % need not actually exist
  163.   if they can be created (just like dependencies which do have a %).
  164.  
  165. Version 3.60
  166.  
  167. * A message is always printed when Make decides there is nothing to be done.
  168.   It used to be that no message was printed for top-level phony targets
  169.   (because "`phony' is up to date" isn't quite right).  Now a different
  170.   message "Nothing to be done for `phony'" is printed in that case.
  171.  
  172. * Archives on AIX now supposedly work.
  173.  
  174. * When the commands specified for .DEFAULT are used to update a target,
  175.   the $< automatic variable is given the same value as $@ for that target.
  176.   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
  177.  
  178. Version 3.59
  179.  
  180. * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
  181.   variables while remaking makefiles, so recursive makes done while remaking
  182.   makefiles will behave properly.
  183.  
  184. * If the special target `.NOEXPORT' is specified in a makefile,
  185.   only variables that came from the environment and variables
  186.   defined on the command line are exported.
  187.  
  188. Version 3.58
  189.  
  190. * Suffix rules may have dependencies (which are ignored).
  191.  
  192. Version 3.57
  193.  
  194. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  195.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  196.  
  197. Version 3.55
  198.  
  199. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  200. for the Texinfo manual, but it documents the basic functionality and the
  201. switches.  For full documentation, you should still read the Texinfo manual.
  202. Thanks to Dennis Morse of Stanford University for contributing the initial
  203. version of this.
  204.  
  205. * Variables which are defined by default (e.g., `CC') will no longer be put
  206. into the environment for child processes.  (If these variables are reset by the
  207. environment, makefiles, or the command line, they will still go into the
  208. environment.)
  209.  
  210. * Makefiles which have commands but no dependencies (and thus are always
  211.   considered out of date and in need of remaking), will not be remade (if they
  212.   were being remade only because they were makefiles).  This means that GNU
  213.   Make will no longer go into an infinite loop when fed the makefiles that
  214.   `imake' (necessary to build X Windows) produces.
  215.  
  216. * There is no longer a warning for using the `vpath' directive with an explicit
  217. pathname (instead of a `%' pattern).
  218.  
  219. Version 3.51
  220.  
  221. * When removing intermediate files, only one `rm' command line is printed,
  222. listing all file names.
  223.  
  224. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  225. These are the directory-only and file-only versions of `$^' and `$?'.
  226.  
  227. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  228. directory if it exists.
  229.  
  230. * The automatic variable `$($/)' is no longer defined.
  231.  
  232. * Leading `+' characters on a command line make that line be executed even
  233. under -n, -t, or -q (as if the line contained `$(MAKE)').
  234.  
  235. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  236. only those lines are executed, not their entire rules.
  237. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  238.  
  239. Version 3.50
  240.  
  241. * Filenames in rules will now have ~ and ~USER expanded.
  242.  
  243. * The `-p' output has been changed so it can be used as a makefile.
  244. (All information that isn't specified by makefiles is prefaced with comment
  245. characters.)
  246.  
  247. Version 3.49
  248.  
  249. * The % character can be quoted with backslash in implicit pattern rules,
  250. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  251. `filter-out' functions.  A warning is issued if a `vpath' directive's
  252. pattern contains no %.
  253.  
  254. * The `wildcard' variable expansion function now expands ~ and ~USER.
  255.  
  256. * Messages indicating failed commands now contain the target name:
  257.     make: *** [target] Error 1
  258.  
  259. * The `-p' output format has been changed somewhat to look more like
  260. makefile rules and to give all information that Make has about files.
  261.  
  262. Version 3.48
  263.  
  264. Version 3.47
  265.  
  266. * The `-l' switch with no argument removes any previous load-average limit.
  267.  
  268. * When the `-w' switch is in effect, and Make has updated makefiles,
  269. it will write a `Leaving directory' messagfe before re-executing itself.
  270. This makes the `directory change tracking' changes to Emacs's compilation
  271. commands work properly.
  272.  
  273. Version 3.46
  274.  
  275. * The automatic variable `$*' is now defined for explicit rules,
  276. as it is in Unix make.
  277.  
  278. Version 3.45
  279.  
  280. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  281. specified without an argument (indicating infinite jobs).
  282. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  283.  
  284. * Make no longer checks hashed directories after running commands.
  285. The behavior implemented in 3.41 caused too much slowdown.
  286.  
  287. Version 3.44
  288.  
  289. * A dependency is NOT considered newer than its dependent if
  290. they have the same modification time.  The behavior implemented
  291. in 3.43 conflicts with RCS.
  292.  
  293. Version 3.43
  294.  
  295. * Dependency loops are no longer fatal errors.
  296.  
  297. * A dependency is considered newer than its dependent if
  298. they have the same modification time.
  299.  
  300. Version 3.42
  301.  
  302. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  303. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  304. explicit rules and expect them to be set.  Unfortunately, there is no way to
  305. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  306. are not used (and these are used by BSD make).
  307.  
  308. Version 3.41
  309.  
  310. * Make now checks to see if its hashed directories are changed by commands.
  311. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  312.  
  313. Version 3.39
  314.  
  315. * The `shell' function no longer captures standard error output.
  316.  
  317. Version 3.32
  318.  
  319. * A file beginning with a dot can be the default target if it also contains
  320. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  321.  
  322. Version 3.31
  323.  
  324. * Archive member names are truncated to 15 characters.
  325.  
  326. * Yet more USG stuff.
  327.  
  328. * Minimal support for Microport System V (a 16-bit machine and a
  329. brain-damaged compiler).  This has even lower priority than other USG
  330. support, so if it gets beyond trivial, I will take it out completely.
  331.  
  332. * Revamped default implicit rules (not much visible change).
  333.  
  334. * The -d and -p options can come from the environment.
  335.  
  336. Version 3.30
  337.  
  338. * Improved support for USG and HPUX (hopefully).
  339.  
  340. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  341. equivalent to `$(patsubst a,b,$(foo))'.
  342.  
  343. * Defining .DEFAULT with no deps or commands clears its commands.
  344.  
  345. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  346. executable).  All default implicit rules that use cpp (even indirectly), use
  347. $(CPPFLAGS).
  348.  
  349. Version 3.29
  350.  
  351. * Giving the -j option with no arguments gives you infinite jobs.
  352.  
  353. Version 3.28
  354.  
  355. * New option: "-l LOAD" says not to start any new jobs while others are
  356. running if the load average is not below LOAD (a floating-point number).
  357.  
  358. * There is support in place for implementations of remote command execution
  359. in Make.  See the file remote.c.
  360.  
  361. Version 3.26
  362.  
  363. * No more than 10 directories will be kept open at once.
  364. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  365.  
  366. Version 3.25
  367.  
  368. * Archive files will have their modification times recorded before doing
  369. anything that might change their modification times by updating an archive
  370. member.
  371.  
  372. Version 3.20
  373.  
  374. * The `MAKELEVEL' variable is defined for use by makefiles.
  375.  
  376. Version 3.19
  377.  
  378. * The recursion level indications in error messages are much shorter than
  379. they were in version 3.14.
  380.  
  381. Version 3.18
  382.  
  383. * Leading spaces before directives are ignored (as documented).
  384.  
  385. * Included makefiles can determine the default goal target.
  386. (System V Make does it this way, so we are being compatible).
  387.  
  388. Version 3.14.
  389.  
  390. * Variables that are defaults built into Make will not be put in the
  391. environment for children.  This just saves some environment space and,
  392. except under -e, will be transparent to sub-makes.
  393.  
  394. * Error messages from sub-makes will indicate the level of recursion.
  395.  
  396. * Hopefully some speed-up for large directories due to a change in the
  397. directory hashing scheme.
  398.  
  399. * One child will always get a standard input that is usable.
  400.  
  401. * Default makefiles that don't exist will be remade and read in.
  402.  
  403. Version 3.13.
  404.  
  405. * Count parentheses inside expansion function calls so you can
  406. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  407.  
  408. Version 3.12.
  409.  
  410. * Several bug fixes, including USG and Sun386i support.
  411.  
  412. * `shell' function to expand shell commands a la `
  413.  
  414. * If the `-d' flag is given, version information will be printed.
  415.  
  416. * The `-c' option has been renamed to `-C' for compatibility with tar.
  417.  
  418. * The `-p' option no longer inhibits other normal operation.
  419.  
  420. * Makefiles will be updated and re-read if necessary.
  421.  
  422. * Can now run several commands at once (parallelism), -j option.
  423.  
  424. * Error messages will contain the level of Make recursion, if any.
  425.  
  426. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  427. makefiles are read.
  428.  
  429. * A double-colon rule with no dependencies will always have its commands run.
  430. (This is how both the BSD and System V versions Make do it.)
  431.  
  432. Version 3.05
  433.  
  434. ----------------------------------------------------------------------
  435. Copyright information:
  436.  
  437. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  438.  
  439.    Permission is granted to anyone to make or distribute verbatim copies
  440.    of this document as received, in any medium, provided that the
  441.    copyright notice and this permission notice are preserved,
  442.    thus giving the recipient permission to redistribute in turn.
  443.  
  444.    Permission is granted to distribute modified versions
  445.    of this document, or of portions of it,
  446.    under the above conditions, provided also that they
  447.    carry prominent notices stating who last changed them.
  448.  
  449. Local variables:
  450. version-control: never
  451. end:
  452.